Enumerates stack frames and merges output from several enumerators on the same thread.
|
---|
typedef struct tagDebugStackFrameDescriptor {
IDebugStackFrame *pdsf;
DWORD_PTR dwMin;
DWORD_PTR dwLim;
BOOL fFinal;
IUnknown *punkFinal;
} DebugStackFrameDescriptor; |
Members
-
pdsf
-
The stack frame object.
-
dwMin
-
A machine-dependent representation of the lower range of physical addresses associated with this stack frame.
-
dwLim
-
A machine-dependent representation of the upper range of physical addresses associated with this stack frame.
-
fFinal
-
Flag that indicates that the frame is being processed.
-
punkFinal
-
If this parameter is not NULL, the current enumerator merging should stop and a new one should be started. The object indicates how to start the new enumeration.
Remarks
See Also